home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / ici / ici.cpi / conf-sun.h < prev    next >
C/C++ Source or Header  |  1994-10-27  |  653b  |  23 lines

  1. #ifndef ICI_CONF_H
  2. #define ICI_CONF_H
  3.  
  4. #define    BSD
  5. #define    BAD_PRINTF_RETVAL
  6.  
  7. #undef    NOMATH        /* Trig and etc. */
  8. #undef    NOWIN        /* Lib curses based screen handling. */
  9. #define    NODB        /* Simple ascii file based data base. */
  10. #define    NOTRACE        /* For debugging. */
  11. #undef    NOWAITFOR    /* Requires select() or similar system primitive. */
  12. #undef    NOSYSTEM    /* Command interpreter (shell) escape. */
  13. #undef    NOPIPES        /* Requires popen(). */
  14. #undef    NOSKT        /* BSD style network interface. */
  15. #undef    NOSYSCALL    /* A few UNIX style system calls. */
  16.  
  17. /*
  18.  * Mentioned in the version string.
  19.  */
  20. #define    CONFIG_STR    "math win waitfor system pipes skt"
  21.  
  22. #endif /*ICI_CONF_H*/
  23.